Name | Description | |
---|---|---|
![]() | Add | Adds a T object to the ItemCollection<T>. |
![]() | AddRange | Adds a collection of T objects to the existing ItemCollection<T>. |
![]() | Clear | Removes all items from the ItemCollection<T>. |
![]() | Contains | Gets a value indicating whether the ItemCollection<T> contains the specified T. |
![]() | CopyTo | Copies the objects in the ItemCollection<T> to a T array, starting at the specified array index. |
![]() | IndexOf | Determines the index of a specific T object in the ItemCollection<T>. |
![]() | Insert | Inserts a new T into the ItemCollection<T> at the specified location. |
![]() | Remove | Removes the specified T object from the ItemCollection<T>. |
![]() | RemoveAt | Removes a T object from the ItemCollection<T> at the specified index. |
![]() | ToArray | Copies the elements of the ItemCollection<T> to a new array. |